home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Graphics / GraphicsWrap / Source / CmdFps.m < prev    next >
Text File  |  1991-09-16  |  194b  |  18 lines

  1. #import "CmdFps.h"
  2.  
  3. @implementation CmdFps
  4. - initCmd:(int)rate
  5. {
  6.   [super init];
  7.   command="fps";
  8.   number1=rate;
  9.   return self;
  10. }
  11.  
  12. - doCmd
  13. {
  14.   [theBitmap cmdFps:number1];
  15.   return self;
  16. }
  17. @end
  18.